home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / CPARSE.ZIP / CPARSE.DPR next >
Encoding:
Text File  |  1996-10-04  |  284 b   |  15 lines

  1. program Cparse;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {fmMain};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Delphi Form Parser';
  11.   Application.HelpFile := 'E:\FORMP\FORMP.HLP';
  12.   Application.CreateForm(TfmMain, fmMain);
  13.   Application.Run;
  14. end.                             
  15.